.mp-about__innerwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 640px;
    margin: 0 auto;
}

.mp-about__img {
    padding-left: 20px;
}

.mp-about__img img {
    -webkit-box-shadow: -20px -20px 0 0 rgb(24,41,120);
            box-shadow: -20px -20px 0 0 rgb(24,41,120);
}

.imgright.mp-about__img img {
    box-shadow: 20px 20px 0 0 rgb(24,41,120);
}

.mp-about__innerwrap {
    padding-bottom: 100px;
}

.mp-about__innerwrap:last-child {
    padding-bottom: unset;
}

@media (min-width: 992px ) {
    .mp-about__innerwrap {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: space-evenly;
            -ms-flex-pack: space-evenly;
                justify-content: space-evenly;
        max-width: unset;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 20px;
    }

    .mp-about__innerwrap > * {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 50%;
    }

    .mp-about__img.imgright {
        order: 2;
    }
}